has_tooltip_widget was assigned twice in immediate succession.
return_value is not used anywhere else in this function since commit
14a864c8b55dfe92f8957499f12a3f9303188a12 and does not need a default
value anymore, so move it to the inner scope and don't init to NULL.
gtk_tooltip_handle_event_internal (GdkEvent *event)
{
gint x, y;
- gboolean return_value = FALSE;
- GtkWidget *has_tooltip_widget = NULL;
+ GtkWidget *has_tooltip_widget;
GdkDisplay *display;
GtkTooltip *current_tooltip;
if (current_tooltip && current_tooltip->keyboard_mode_enabled)
{
+ gboolean return_value;
+
has_tooltip_widget = current_tooltip->keyboard_widget;
if (!has_tooltip_widget)
return;